home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / CC_C / 1541.ZIP / YACCUNX.ARC / YAOPUT.4C < prev    next >
Text File  |  1983-12-25  |  288b  |  15 lines

  1. #include "y4.h"
  2.  
  3. aoutput()
  4.    {
  5.    /* this version is for C */
  6.    /* write out the optimized parser */
  7.  
  8.    fprintf( ftable, "# define YYLAST %d\n", maxa-a+1 );
  9.  
  10.    arout( "yyact", a, (maxa-a)+1 );
  11.    arout( "yypact", pa, nstate );
  12.    arout( "yypgo", pgo, nnonter+1 );
  13.  
  14.    }
  15.